home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d13 / patch12.arc / POPENTST.MAK < prev    next >
Encoding:
Text File  |  1990-10-02  |  303 b   |  19 lines

  1. popen.exe: popen.obj getswitch.obj
  2.     tcc -epopen popen.obj getswitch.obj
  3.  
  4. popen.obj: popen.c popen.h
  5.     tcc -c -DDEMO popen.c
  6.  
  7. getswitch.obj: getswitch.c
  8.     tcc -c getswitch.c
  9.  
  10. clean:
  11.     rm -f *.obj core *.map
  12.  
  13. clobber: clean
  14.     rm -f *.exe install
  15.     
  16. install:
  17.     tcc -c popen.c
  18.     @echo What next?
  19.